home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / WWSampleGeneratorInfo.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  290 b   |  17 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface WWSampleGeneratorInfo:Object
  5. {
  6.   char   *name;
  7.   float  weight;
  8. }
  9.  
  10. - setName:(const char *)newCurrentSampleGeneratorName weight:(float)newWeight;
  11. - setWeight:(float)newWeight;
  12. - (float)weight;
  13. - setName:(const char *)name;
  14. - (const char *)name;
  15.  
  16. @end
  17.